home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Oxygen Multimedia Graphics 18
/
Oxygen Multimedia Graphics 18.iso
/
pc
/
System
/
OX18.dxr
/
Internal_14_ROLLOVER ON-OFF anim.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-03-12
|
362 b
|
25 lines
property spriteNum, mySprite
on beginSprite me
mySprite = sprite(me.spriteNum)
mySprite.blend = 0
end
on mouseEnter me
repeat with i = 50 to 100
mySprite.blend = i
updateStage()
end repeat
end
on mouseWithin me
mySprite.blend = 100
end
on mouseLeave me
repeat with i = 50 to 100
mySprite.blend = -i
updateStage()
end repeat
end